home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 9 / Night Owl CD-ROM (NOPV9) (Night Owl Publisher) (1993).ISO / 015a / amise200.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1993-04-16  |  1KB  |  53 lines

  1. @echo off
  2. cls
  3. rem
  4. rem AMIsetup INSTALLATION BATCH FILE
  5. rem
  6. rem
  7. echo ■
  8. echo ■ AMIsetup Installation
  9. echo ■
  10. if "%1" == "" goto badarg
  11. if not exist LABEL.200 goto cdir
  12. echo ■ AMIsetup will be copied to the directory "%1".
  13. echo ■ AMIsetup wird in das Verzeichnis "%1" kopiert.
  14. echo ■
  15. echo ■ OK = Return                               BREAK=Ctrl+C  ABBRUCH=Strg+C
  16. echo ■
  17. pause
  18. md %1
  19. cls
  20. echo ■
  21. echo ■ Please wait ■ Bitte warten
  22. echo ■
  23. copy *.* %1 /V > NUL
  24. if errorlevel 1 goto error
  25. if exist %1\LABEL.200 goto ok
  26. if exist %1LABEL.200 goto ok
  27. :error
  28. cls
  29. echo ■
  30. echo ■ Error ■ Fehler
  31. echo ■
  32. goto quit
  33. :ok
  34. cls
  35. echo ■
  36. echo ■ AMIsetup Installation
  37. echo ■                                                       Done ■ Fertig
  38. echo ■
  39. echo ■ SUPPORT SHAREWARE - REGISTER NOW!
  40. echo ■ UNTERSTÜTZEN SIE SHAREWARE!
  41. echo ■
  42. goto quit
  43. :badarg
  44. echo ■ SYNTAX: INSTALL DIRECTORY           Example:  install c:\setup
  45. echo ■         INSTALL VERZEICHNIS         Beispiel: install c:\setup
  46. echo ■
  47. goto quit
  48. :cdir
  49. echo ■ THE INSTALLATION DISK MUST BE IN THE CURRENT DRIVE!
  50. echo ■ DIE INSTALLATIONSDISKETTE MUSS IM AKTUELLEN LAUFWERK SEIN!
  51. echo ■
  52. :quit
  53.